home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Champak 83
/
(Vol 83) My Disc.iso
/
Games
/
drying.swf
/
scripts
/
frame_132
/
PlaceObject2_183_701
/
CLIPACTIONRECORD onClipEvent(enterFrame).as
next >
Wrap
Text File
|
2008-08-08
|
923b
|
44 lines
onClipEvent(enterFrame){
if(this.state == "stop")
{
if(this.delay_tmp <= 0)
{
this.state = "run";
delay_tmp = this.delay;
sndRain.start(0,1);
}
else
{
delay_tmp--;
}
}
else if(this.state == "run")
{
this._x -= 2;
if(this.hitTest(_root.mcPlayer.mcBody))
{
this.mcRain._y = -50;
}
else
{
i = 1;
while(i <= 4)
{
if(this.hitTest(_root["mcCloth" + i].mcBody))
{
_root["mcCloth" + i].wait += 4;
_root["mcCloth" + i].isWet = true;
_root["mcCloth" + i].mcCloth.gotoAndPlay(1);
}
i++;
}
this.mcRain._y = 125;
}
if(this._x < -100)
{
this._x = 500;
this.state = "stop";
}
}
}